{% extends 'base.html' %} {% load static %} {% block title %}Staff Members{% endblock %} {% block content %}
| Name | Services | Status | Actions | |
|---|---|---|---|---|
| {{ staff.user.get_full_name|default:staff.user.username }} | {{ staff.user.email }} | {% for service in staff.services.all %} {{ service.name }} {% empty %} No services assigned {% endfor %} | {% if staff.user.is_active %} Active {% else %} Inactive {% endif %} | |
|
No staff members found. {% if user.is_staff %} Add Staff Member {% endif %} |
||||